//Bow.cpp #include "Bow.h" #include using namespace std; Bow::Bow(string aColor) { numOfArrows = 10; drawn = false; color = aColor; srand((unsigned)time(0)); //seeds the time (we need the rand() function in the fire() method) } Bow::~Bow() { } //draws the bow void Bow::draw() { drawn = true; cout<< "The "<